runtime.mheap.spanalloc (field)

9 uses

	runtime (current package)
		metrics.go#L651: 		a.mSpanInUse = uint64(mheap_.spanalloc.inuse)
		mheap.go#L202: 	spanalloc              fixalloc // allocator for span*
		mheap.go#L756: 	h.spanalloc.init(unsafe.Sizeof(mspan{}), recordspan, unsafe.Pointer(h), &memstats.mspan_sys)
		mheap.go#L771: 	h.spanalloc.zero = false
		mheap.go#L1117: 		return (*mspan)(h.spanalloc.alloc())
		mheap.go#L1123: 			pp.mspancache.buf[i] = (*mspan)(h.spanalloc.alloc())
		mheap.go#L1155: 	h.spanalloc.free(unsafe.Pointer(s))
		mstats.go#L529: 	stats.MSpanInuse = uint64(mheap_.spanalloc.inuse)
		proc.go#L5141: 			mheap_.spanalloc.free(unsafe.Pointer(pp.mspancache.buf[i]))